home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_DateToMonth.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
263b
|
9 lines
#include <Date.au3>
; Retrieve the long name
$sLongMonthName = _DateToMonth(@MON)
; Retrieve the abbreviated name
$sShortMonthName = _DateToMonth(@MON, 1)
MsgBox(4096, "Month of Year", "The month is: " & $sLongMonthName & " (" & $sShortMonthName & ")")